home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap13 / dun13_9.txt < prev   
Encoding:
Text File  |  1997-12-18  |  623 b   |  29 lines

  1. <HTML>
  2.  
  3. <BODY>
  4.  
  5.  
  6.  
  7. <SCRIPT LANGUAGE="VBScript">
  8.  
  9. sub myDiv_onClick
  10.  
  11.     msgbox window.event.srcElement.id
  12.  
  13. end sub
  14.  
  15.  
  16.  
  17. sub myBold_onClick
  18.  
  19.     msgbox "BOLD!"
  20.  
  21.     window.event.cancelBubble=true
  22.  
  23. end sub
  24.  
  25.  
  26.  
  27. sub myRef_onClick
  28.  
  29.     msgbox "Whoa!  Can't let you go there!"
  30.  
  31.     window.event.cancelBubble=true
  32.  
  33.     window.event.returnValue=false
  34.  
  35. end sub
  36.  
  37. </SCRIPT>
  38.  
  39.  
  40.  
  41. <DIV ID=myDiv LANGUAGE="VBScript">
  42.  
  43. <B ID=myBold>This is Bold Text</B><BR>
  44.  
  45. <I ID=myItalic>This is Italic Text</I><BR>
  46.  
  47. <A ID=myRef HREF="http://www.microsoft.com/ie/ie40">
  48.  
  49. This is a link to Microsoft</A>
  50.  
  51. </DIV>
  52.  
  53. </BODY>
  54.  
  55. </HTML>
  56.  
  57.